home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_properties_links.php < prev    next >
PHP Script  |  2005-02-06  |  6KB  |  137 lines

  1. <?php
  2. /* $Id: tbl_properties_links.php,v 2.11 2005/02/06 22:19:50 rabus Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Sets error reporting level
  8.  */
  9. // (removed to avoid path disclosure, not sure about why this was here)
  10. // error_reporting(E_ALL);
  11.  
  12.  
  13. // Check parameters
  14.  
  15. require_once('./libraries/common.lib.php');
  16.  
  17. PMA_checkParameters(array('db', 'table'));
  18.  
  19. echo '<!-- top menu -->' . "\n";
  20.  
  21. /**
  22.  * Count amount of navigation tabs
  23.  */
  24. $db_details_links_count_tabs = 0;
  25.  
  26.  
  27. /**
  28.  * Prepares links
  29.  */
  30. require_once('./libraries/bookmark.lib.php');
  31. $book_sql_query = PMA_queryBookmarks($db, $cfg['Bookmark'], '\'' . PMA_sqlAddslashes($table) . '\'', 'label');
  32.  
  33. if ($table_info_num_rows > 0 || $tbl_is_view) {
  34.     $lnk2    = 'sql.php';
  35.     $arg2    = $url_query
  36.              . '&sql_query=' . (isset($book_sql_query) && $book_sql_query != FALSE ? urlencode($book_sql_query) : urlencode('SELECT * FROM ' . PMA_backquote($table)))
  37.              . '&pos=0';
  38.     $lnk4    = 'tbl_select.php';
  39.     $arg4    = $url_query;
  40.     if ($tbl_is_view) {
  41.         $lnk8    = '';
  42.         $arg8    = '';
  43.         $att8    = '';
  44.         $class8  = '';
  45.     } else {
  46.         $ln8_stt = (PMA_MYSQL_INT_VERSION >= 40000)
  47.                  ? 'TRUNCATE TABLE '
  48.                  : 'DELETE FROM ';
  49.         $lnk8    = 'sql.php';
  50.         $arg8    = $url_query . '&sql_query='
  51.                  . urlencode($ln8_stt . PMA_backquote($table))
  52.                  .  '&zero_rows='
  53.                  .  urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($table)));
  54.         $att8    = 'onclick="return confirmLink(this, \'' . $ln8_stt . PMA_jsFormat($table) . '\')"';
  55.         $class8  = 'Drop';
  56.     }
  57. } else {
  58.     $lnk2    = '';
  59.     $arg2    = '';
  60.     $lnk4    = '';
  61.     $arg4    = '';
  62.     $lnk8    = '';
  63.     $arg8    = '';
  64.     $att8    = '';
  65.     $class8  = 'Drop';
  66. }
  67.  
  68. $arg9 = $url_query . '&reload=1&purge=1&sql_query=' . urlencode('DROP ' . ($tbl_is_view ? 'VIEW' : 'TABLE') . ' ' . PMA_backquote($table) ) . '&zero_rows=' . urlencode(sprintf($strTableHasBeenDropped, htmlspecialchars($table)));
  69. $att9 = 'onclick="return confirmLink(this, \'DROP TABLE ' . PMA_jsFormat($table) . '\')"';
  70. $class9 = 'Drop';
  71.  
  72.  
  73. /**
  74.  * Displays links
  75.  */
  76.  
  77. if ($cfg['LightTabs']) {
  78.     echo ' ';
  79. } else {
  80.     echo '<table border="0" cellspacing="0" cellpadding="0" width="100%" id="topmenu">' . "\n"
  81.        . '    <tr>' . "\n"
  82.        . '        <td class="nav" align="left" nowrap="nowrap" valign="bottom">'
  83.        . '            <table border="0" cellpadding="0" cellspacing="0"><tr>'
  84.        . '                <td nowrap="nowrap"><img src="' . $GLOBALS['pmaThemeImage'] . 'spacer.png' . '" width="2" height="1" border="0" alt="" /></td>'
  85.        . '                <td class="navSpacer"><img src="' . $GLOBALS['pmaThemeImage'] . 'spacer.png' . '" width="1" height="1" border="0" alt="" /></td>';
  86. }
  87.  
  88. echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_props.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strStructure.'" />' : '') . $strStructure, 'tbl_properties_structure.php', $url_query)
  89.    . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_browse.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strBrowse.'" />' : '') . $strBrowse, $lnk2, $arg2)
  90.    . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_sql.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strSQL.'" />' : '') . $strSQL, 'tbl_properties.php', $url_query)
  91.    . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_search.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strSearch.'" />' : '') . $strSearch, $lnk4, $arg4)
  92.    . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_insrow.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strInsert.'" />' : '') . $strInsert, 'tbl_change.php', $url_query);
  93. /**
  94.  * Don't display "Export", "Operations" and "Empty" for views.
  95.  */
  96. if (!$tbl_is_view) {
  97.     echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_tblexport.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strExport.'" />' : '') . $strExport, 'tbl_properties_export.php', $url_query . '&single_table=true')
  98.        . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_tblops.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strOperations.'" />' : '') . $strOperations, 'tbl_properties_operations.php', $url_query)
  99.        . PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_empty.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strEmpty.'" />' : '') . $strEmpty, $lnk8, $arg8, $att8, $class8);
  100. }
  101. echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_deltbl.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strDrop.'" />' : '') . $strDrop, 'sql.php', $arg9, $att9, $class9)
  102.    . "\n";
  103.  
  104. if (!$cfg['LightTabs']) {
  105.     echo '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png' . '" width="2" height="1" border="0" alt="" /></td>'
  106.        . '            </tr></table>' . "\n"
  107.        . '        </td>' . "\n"
  108.        . '    </tr>' . "\n"
  109.        . '</table>';
  110. } else {
  111.     echo '<br />';
  112. }
  113.  
  114. /**
  115.  * Displays table comment
  116.  */
  117. if (!empty($show_comment) && !isset($avoid_show_comment)) {
  118.     ?>
  119. <!-- Table comment -->
  120. <p><i>
  121.     <?php echo htmlspecialchars($show_comment) . "\n"; ?>
  122. </i></p>
  123.     <?php
  124. } // end if
  125.  
  126. echo "\n\n";
  127.  
  128. /**
  129.  * Displays a message
  130.  */
  131. if (!empty($message)) {
  132.     PMA_showMessage($message);
  133.     unset($message);
  134. }
  135.  
  136. ?><br />
  137.